Class Modification

java.lang.Object
com.netscape.certsrv.dbs.Modification

public class Modification extends Object
A class represents a modification. This is used by the database (dbs) framework for modification operations. It specifices the modification type and values.
Version:
$Revision$, $Date$
  • Field Details

  • Constructor Details

    • Modification

      public Modification(String name, int op, Object value)
      Constructs a role modification.
      Parameters:
      name - attribute name
      op - attribute operation (i.e. MOD_ADD, MOD_DELETE, or MOD_REPLACE)
      value - attribute value
  • Method Details

    • getName

      public String getName()
      Retrieves attribute name.
      Returns:
      attribute name
    • getOp

      public int getOp()
      Retrieves modification operation type.
      Returns:
      modification type
    • getValue

      public Object getValue()
      Retrieves attribute value.
      Returns:
      attribute value